projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35c7a97
)
(Fbyte_code): Use BEFORE_POTENTIAL_GC and
author
Gerd Moellmann
<gerd@gnu.org>
Fri, 5 Nov 1999 21:55:27 +0000
(21:55 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Fri, 5 Nov 1999 21:55:27 +0000
(21:55 +0000)
AFTER_POTENTIAL_GC around internal_catch.
src/bytecode.c
patch
|
blob
|
history
diff --git
a/src/bytecode.c
b/src/bytecode.c
index 0093e692b2f614a165f9e15750e3c170d4b28896..fb94cf8e1d77fb043152620c258f198a469d88bf 100644
(file)
--- a/
src/bytecode.c
+++ b/
src/bytecode.c
@@
-676,7
+676,9
@@
If the third argument is incorrect, Emacs may crash.")
case Bcatch:
v1 = POP;
+ BEFORE_POTENTIAL_GC ();
TOP = internal_catch (TOP, Feval, v1);
+ AFTER_POTENTIAL_GC ();
break;
case Bunwind_protect: